home *** CD-ROM | disk | FTP | other *** search
/ Launch & Play / spustahrej2.iso / Liquid War / misc / lwpopup.js next >
Encoding:
Text File  |  2004-02-11  |  326 b   |  15 lines

  1. var wshShell;
  2. var strText;
  3. var intDelay;
  4. var strTitle;
  5. var intType;
  6.  
  7. wshShell=WScript.CreateObject("WScript.Shell");
  8. strText="Someone just connected on your server. Ready for a game?";
  9. intDelay=5;
  10. strTitle="Liquid War Server"
  11. intType=0|64; // OK|Information 
  12.  
  13. wshShell.Popup(strText,intDelay,strTitle,intType);
  14.  
  15.